Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@livelybone/mouse-wheel
Advanced tools
A module for bind mouse-wheel event. typescript supported
pkg.module supported
, which means that you can apply tree-shaking in you project
A module for bind mouse-wheel event. typescript supported
https://github.com/livelybone/mouse-wheel.git
https://github.com/livelybone/mouse-wheel#readme
you can see the usage by run the example of the module, here is the step:
git clone https://github.com/livelybone/mouse-wheel.git
cd your-module-directory
npm i
(use taobao registry: npm i --registry=http://registry.npm.taobao.org
)npm run dev
http://127.0.0.1:3000/examples/test.html
) in your browsernpm i -S @livelybone/mouse-wheel
umd
bundleMouseWheel
See what method or params you can use in index.d.ts
import { bind, BindOptions, CustomListener, CustomWheelEvent } from '@livelybone/mouse-wheel'
let unbind
const listener: CustomListener = (event: CustomWheelEvent) => {}
const options: BindOptions = {}
// Bind on element
unbind = bind(document.getElementById('id'), listener, options)
// Unbind
unbind()
// Bind on window
unbind = bind(listener, options)
// Unbind
unbind()
Use in html, see what you can use in CDN: unpkg
<-- use what you want -->
<script src="https://unpkg.com/@livelybone/mouse-wheel/lib/umd/<--module-->.js"></script>
Or,see what you can use in CDN: jsdelivr
<script src="https://cdn.jsdelivr.net/npm/@livelybone/mouse-wheel/lib/umd/<--module-->.js"></script>
FAQs
A module for bind mouse-wheel event. typescript supported
We found that @livelybone/mouse-wheel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.